home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / hf^k-2.dms / in.adf / MUIClass.Lha / Include / Classes / TWiMUI / Scrollgroup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-06  |  1.6 KB  |  54 lines

  1. //
  2. //  $VER: Scrollgroup.h 1.2 (02 Sep 1996)
  3. //
  4. //    c 1996 Thomas Wilhelmi
  5. //
  6. //
  7. // Address : Taunusstrasse 14
  8. //           61138 Niederdorfelden
  9. //           Germany
  10. //
  11. //  E-Mail : willi@twi.rhein-main.de
  12. //
  13. //   Phone : +49 (0)6101 531060
  14. //   Fax   : +49 (0)6101 531061
  15. //
  16. //
  17. //  $HISTORY:
  18. //
  19. //  16 Jun 1996 :   1.0 : first public Release
  20. //
  21. //  02 Sep 1996 :   1.2 : Neu:
  22. //                        - Die Methode Contents() wurde für MUI 3.6 hinzugefügt
  23. //                        - Die Methode HorizBar() wurde für MUI 3.6 hinzugefügt
  24. //                        - Die Methode VertBar() wurde für MUI 3.6 hinzugefügt
  25. //                        - ClassNum() für Exception-Handling.
  26. //                        Änderungen
  27. //                        - Parameter des Copy-Konstruktor als 'const'-Parameter definiert
  28. //
  29.  
  30. #ifndef CPP_TWIMUI_SCROLLGROUP_H
  31. #define CPP_TWIMUI_SCROLLGROUP_H
  32.  
  33. #ifndef CPP_TWIMUI_GROUP_H
  34. #include <classes/twimui/group.h>
  35. #endif
  36.  
  37. class MUIScrollgroup : public MUIGroup
  38.     {
  39.     protected:
  40.         virtual const ULONG ClassNum() const;
  41.     public:
  42.         MUIScrollgroup(const struct TagItem *t) : MUIGroup(MUIC_Scrollgroup) { init(t); };
  43.         MUIScrollgroup(const Tag, ...);
  44.         MUIScrollgroup() : MUIGroup(MUIC_Scrollgroup) { };
  45.         MUIScrollgroup(const MUIScrollgroup &);
  46.         virtual ~MUIScrollgroup();
  47.         MUIScrollgroup &operator= (const MUIScrollgroup &);
  48.         Object *Contents() const { return((Object *)get(MUIA_Scrollgroup_Contents,NULL)); };
  49.         Object *HorizBar() const { return((Object *)get(MUIA_Scrollgroup_HorizBar,NULL)); };
  50.         Object *VertBar() const { return((Object *)get(MUIA_Scrollgroup_VertBar,NULL)); };
  51.     };
  52.  
  53. #endif
  54.